<table> element

The <table> element allows you to specify columnar format. You can control the overall alignment of the table, but not the alignment of individual cells. WML tables are similar to HTML tables but with fewer capabilities.

When defining a table, you have to declare the number of columns, followed by some content. The content can include empty rows and columns.

Syntax

Attributes

 
align left | right | center

Specifies text alignment relative to the column. If you do not specify the align attribute, the text is automatically left-aligned. 

title Specifies a label for the table. 
columns Specifies the number of columns for the row set. Specifying a zero value for this attribute is not allowed. 

Example